home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / gifbox / gifbox.txt < prev    next >
Text File  |  1995-12-22  |  2KB  |  27 lines

  1. GIFBOX.VBX Visual Basic Custom Control
  2. ======================================
  3.  
  4. Requirements:  Microsoft Windows 3.0 or later
  5.                Microsoft Visual Basic for Windows 2.0 or later 
  6.  
  7. Recommended:   386 DX 33 MHz or better CPU
  8.                VGA or better display
  9.                Microsoft Windows 3.11 or later
  10.  
  11. Custom Control Properties
  12. -------------------------
  13.  
  14. ImageHeight - (Read Only) The height in pixels of the loaded GIF image.
  15.  
  16. ImageWidth - (Read Only) The width in pixels of the loaded GIF image.
  17.  
  18. Filename - Assigning a GIF file name to this property during run-time loads the GIF file into the control.
  19.  
  20. Picture - Allows loading of a GIF file into the control during design-time.
  21.  
  22. Stretch - When set to True, the image will be stretched or shrunk as needed to fit within the dimensions of the control.  When set to False, the image will be displayed in its original size.  If the image is too large to be displayed in the control, then not all of it will be visible, and scrolling would be required using the XOffset and YOffset properties (see below).
  23.  
  24. XOffset - Used for scrolling a large unstretched image left and right within the control.  Values less than zero have the effect of scrolling the image left within the control, and values greater than zero scroll the image right.
  25.  
  26. YOffset - Used for scrolling a large unstretched image up and down within the control.  Values less than zero have the effect of scrolling the image down within the control, and values greater than zero scroll the image up.
  27.